home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0085 / 409.txt < prev    next >
Text File  |  1997-04-16  |  13KB  |  299 lines

  1. =========================================================================
  2.  
  3. INFO-ATARI16 Digest         Thu,  5 Apr 90       Volume 90 : Issue  409
  4.  
  5. Today's Topics:
  6.                  How to create a senseless flame war
  7.                     MIDI at 500KHz ... IT WORKS!!!
  8.                NEC 3D and NEC GS multisync monitors...
  9.                     POOLFIX4 and the XBRA Standard
  10.                      Problems with dutch TOS 1.4
  11.                  Upgrading Mega 2 to Mega 4 (3 msgs)
  12. ----------------------------------------------------------------------
  13.  
  14. Date: 5 Apr 90 05:42:19 GMT
  15. From: oliveb!amiga!cbmvax!valentin@apple.com  (Valentin Pepelea)
  16. Subject: How to create a senseless flame war
  17. Message-ID: <10607@cbmvax.commodore.com>
  18.  
  19. Sometimes computer wars are initiated by users who have an inferiority complex
  20. about their computers and therefore get defensive. But most often they are
  21. created by users who simply never took a good look on the other side of the
  22. fence. Let's analyse such a typically uninformed poster...
  23.  
  24. In article <1990Apr4.235543.24355@ux1.cso.uiuc.edu> cs325ec@ux1.cso.uiuc.edu
  25. (Gregory Lemperle-Kerr) writes:
  26. >
  27. > Just wondering why all these lame Amiga users are posting and not
  28. > many Atari users...
  29.  
  30. First of all, the user must use insults. This is a good tactic. Not only
  31. does it ensure to attract attention, but it also hides a lack of technical
  32. information.
  33.  
  34. > The Amax from what I have heard (that is the Amiga's mac emulator)
  35. > is like a tadpole in the pond of mac emulators whereas Spectre on
  36. > the Atari approaches the bullfrog.
  37.  
  38. Here the user will not take the risk of judging a product all by himself.
  39. He will claim "I heard that...", "it is well known..". If he makes a statement
  40. about these products which could be interpreted to be his own, then he risks
  41. being provent as incompetent.
  42.  
  43. > Atari has the added bonus that many of its users are hacks (like
  44. > me) who know much about computers in general.  I don't know of
  45. > many other computers with as many cheap ways to enhance it.
  46.  
  47. Of course, the fellow has never made a survey and therefore does not know
  48. that Usenet, by nature, is inhabited by hackers. He therefore does not know
  49. that more than 30000 other users read the Mac, Amiga and Atari groups. And
  50. of course, how could he know how many Amigans on Usenet still have Amiga 1000's
  51. on their desk? I'm sure there are such perpetual hackers for other
  52. microcomputers too.
  53.  
  54. > e.g. The mod to expand the screen to 832x512(about), memory upgrade
  55. > without cards... etc.
  56.  
  57. And how could he know about the "expand your memory" and "build your own
  58. accelerator" project published in magazines years ago in such magazines
  59. as Amazing Computing and The Transactor?
  60.  
  61. > Dave Small apparently has a 68030 card working for an ST that he
  62. > will market...?
  63.  
  64. When the competing microcomputers already have numerous accelerator offerings,
  65. it is sometimes a good strategy to recall vaporware products, to be available
  66. Real Soon Now. I wonder how come he never noticed the Amiga 2500 and the Mac II.
  67.  
  68. > The Amiga is also in another price range.  (higher)
  69.  
  70. Just like the precise user survey he made, he also hired Gallup to survey
  71. the list price and market price of the various computers.
  72.  
  73. > 4096 colours are real pretty, if that's what makes your motor run.
  74. > 512 are good enough for me.
  75.  
  76. Ah, relating the virtues of his computer...
  77.  
  78. > There is another hardware mod from Germany for the atari that allows
  79. > the monochrome monitor to work in the colour resolutions using
  80. > grey scales.
  81.  
  82. Isn't that a technical marvel? Now he can finally get rid of his RGB monitor!
  83.  
  84. > Insight:  You had a Mac...  you'll probably get an Amiga except...
  85. >       You ditched a Mac... you should get an Atari ST.
  86.  
  87. Remember these words of wisdom; a true Salomon!
  88.  
  89. Valentin
  90. --
  91. The Goddess of democracy? "The tyrants     Name:    Valentin Pepelea
  92. may distroy a statue,  but they cannot     Phone:   (215) 431-9327
  93. kill a god."                               UseNet:  cbmvax!valentin@uunet.uu.net
  94.              - Ancient Chinese Proverb     Claimer: I not Commodore spokesman be
  95.  
  96. ------------------------------
  97.  
  98. Date: Thu, 05 Apr 90 13:16:56 BST
  99. From: Kevin Maguire <SA44%liverpool.ac.uk@NSFnet-Relay.AC.UK>
  100. Subject: MIDI at 500KHz ... IT WORKS!!!
  101. Message-ID: <9004051235.AA00350@Argus.Stanford.EDU>
  102.  
  103. I read the recent Midi discussion with interest. I too noticed in my ST
  104. internals book that the Midi (and the keyboard) ACIAs could be run at
  105. 500Khz in stead of the normal MIDI 31250baud. I experimented with this
  106. in pure 68000, writing my own MIDI interrupt handlers that were as quick
  107. as they possibly could be, as I knew the TOS handlers would be much too
  108. slow for the job.
  109.    I proceeded to send a copy of one ST's screen over to the others. WIth
  110. my interrupt handler bytes were still being dropped.
  111.    SO, I changed the code to do away with interrupt routines altogther
  112. and wrote a very tight polling routine. THIS DID WORK and sent across
  113. a screen correctly.
  114.     Of course, this can only be done synchronously and is at the bounds
  115. of the 68000's speed, so nothing else AT ALL can be done at the same time
  116. as reading the MIDI port. A keyboard interrupt/VBL interrupt will cause
  117. the polling loop to drop bytes. 500000 bits per second = 50000 bytes
  118. (1 start bit/8 data bits/1 stop bit) which means only 160 clock cycles
  119. for the 68000 to get the byte, any delay will be disasterous.
  120.   I hope this encourages someone.
  121.  
  122. NSFnet : sa44%liv.ac.uk@nsfnet-relay.ac.uk
  123. JANET  : sa44@uk.ac.liv
  124. UUCP   : ...!mcvax!ukc!liv.ac.uk!sa44
  125.  
  126. ------------------------------
  127.  
  128. Date: 5 Apr 90 13:08:41 GMT
  129. From:
  130.  pacific.mps.ohio-state.edu!zaphod.mps.ohio-state.edu!samsung!cs.utexas.edu!news
  131.  -server.csri.toronto.edu!utgpu!watserv1!watdragon!tiger!achowe@tut.cis.ohio-sta
  132.  te.edu  (anthony howe)
  133. Subject: NEC 3D and NEC GS multisync monitors...
  134. Message-ID: <22911@watdragon.waterloo.edu>
  135.  
  136. How does one connect the nice NEC 3D monitor so that you can switch
  137. between mono and colour?
  138.  
  139. - ant
  140.  
  141.   achowe@tiger.waterloo.edu     | "It is hard to make the world go away
  142.    _     -|-|_   _              |  when it has decided to notice you."
  143.   (_\ |\| | | | (_) |\| \/      |  - Spock's World
  144.                      ___/       |                        disclaimer...
  145.  
  146. ------------------------------
  147.  
  148. Date: 5 Apr 90 13:17:41 GMT
  149. From:
  150.  zaphod.mps.ohio-state.edu!samsung!cs.utexas.edu!news-server.csri.toronto.edu!ut
  151.  gpu!watserv1!watdragon!tiger!achowe@tut.cis.ohio-state.edu  (anthony howe)
  152. Subject: POOLFIX4 and the XBRA Standard
  153. Message-ID: <22912@watdragon.waterloo.edu>
  154.  
  155. Hmm. I think I have not been paying attention again and missed
  156. something important on the net. Being a developer and not having a
  157. complete set of docs bothers me to no end.
  158.  
  159. What is the XBRA standard as mentioned in the POOLFIX4 article? Is
  160. there a blurb on how to it is done? Can some kinf soul send it to me
  161. please.
  162.  
  163. - ant
  164.  
  165.   achowe@tiger.waterloo.edu     | "It is hard to make the world go away
  166.    _     -|-|_   _              |  when it has decided to notice you."
  167.   (_\ |\| | | | (_) |\| \/      |  - Spock's World
  168.                      ___/       |                        disclaimer...
  169.  
  170. ------------------------------
  171.  
  172. Date: 2 Apr 90 01:47:20 GMT
  173. From:
  174.  imagen!atari!portal!cup.portal.com!Henry_Burdett_Messenger@ucbvax.Berkeley.EDU
  175. Subject: Problems with dutch TOS 1.4
  176. Message-ID: <28516@cup.portal.com>
  177.  
  178. Chris Evelo writes:
  179.  
  180. > -Did anybody have the same kind of problems? (I was already informed
  181. >  of one case, with US ROMs).
  182.  
  183. > -Is there a hardware explanation. Is there anything in the hardware that
  184. >  could fail and give this kind of errors? The mega that gave the problems
  185. >  here was a new machine, it just might have given the same problems
  186. >  with another TOS version.
  187.  
  188. > -Is it possible to install the ROMs in a wrong way? Can it be that the
  189. >  shop just did a poor job in the installation(s). Since they told me
  190. >  that problems had also occurred with a used mega-4 after the ROMs
  191. >  were changed, I think this would be a more likely explanation.
  192.  
  193.         It just occurred to me: this may be the well-known Mega/EPROM
  194.         problem. TOS 1.4 was originally released as a 6 EPROM set, but
  195.         the Megas use two higher density PROMs. So, when the six EPROMs
  196.         were installed, a driver chip ("SGS" 74LS373) that was marginal
  197.         before ran out of oomph. Solution was to replace the faulty driver
  198.         with a higher power unit (74AS373).
  199.                                 - hbm
  200. ------------------------------------------------------------------------
  201. henry_burdett_messenger@cup.portal.com
  202.  
  203. ------------------------------
  204.  
  205. Date: 2 Apr 90 06:35:19 GMT
  206. From: imagen!atari!portal!cup.portal.com!Bob_BobR_Retelle@ucbvax.Berkeley.EDU
  207. Subject: Upgrading Mega 2 to Mega 4
  208. Message-ID: <28523@cup.portal.com>
  209.  
  210. Paul Zwan asks:
  211. >Has anyone ever tried upgrading a Mega 2 ( late 1987) to 4 MB. ?
  212.  
  213. IF.. your Mega 2ST has the printed circuit positions for the extra RAM chips,
  214. then an upgrade to 4 Megs isn't toooo hard.  It requires carefully sucking th
  215. solder out of alllll the RAM positions (18 pins times 16 chips) plus the
  216. decoupling capacitor positions (16 capacitors times 2 leads each).  Then you
  217. solder in 16 sockets and plug in your new RAM chips..
  218.  
  219. If you've got one of the "redesigned" Mega 2ST boards with no extra
  220. positions, then Atari has you by the balls..  you have to trash your Mega 2ST
  221. and buy a new Mega 4ST... the "Atari Upgrade Path"
  222.  
  223. Welcome to the Atari way of doing things...
  224.  
  225. BobR
  226.  
  227. ------------------------------
  228.  
  229. Date: 5 Apr 90 13:22:42 GMT
  230. From:
  231.  zaphod.mps.ohio-state.edu!samsung!cs.utexas.edu!news-server.csri.toronto.edu!ut
  232.  gpu!watserv1!watdragon!tiger!achowe@tut.cis.ohio-state.edu  (anthony howe)
  233. Subject: Upgrading Mega 2 to Mega 4
  234. Message-ID: <22913@watdragon.waterloo.edu>
  235.  
  236. >Hopefully, you mean 16 more RAM chips, right?  Supposedly one can just solder
  237. >16 dip sockets onto the motherboard then fill them up with 1mbit rams, and
  238. >the ST will automatically recognize the additional memory.  I have been
  239. >meaning to try this for a while, but haven't gotten around to doing it yet.
  240. >It should work, since the motherboards for the Mega2 and Mega4 are the same.
  241. >If someone who knows more about this sees that I am mistaken in some of the
  242. >above, feel free to correct anything.
  243.  
  244. I heard something to the effect that this could not be done because
  245. the speed of the Mega 2 chips are slower than that of a Mega 4 and
  246. so the entire 4M would have to be the same speed or better (which I
  247. do not know) in order to keep up with memory refresh.
  248.  
  249. Did I hear wrong or could I have updated long ago to 4M?
  250.  
  251. - ant
  252.  
  253.  
  254.   achowe@tiger.waterloo.edu     | "It is hard to make the world go away
  255.    _     -|-|_   _              |  when it has decided to notice you."
  256.   (_\ |\| | | | (_) |\| \/      |  - Spock's World
  257.                      ___/       |                        disclaimer...
  258.  
  259. ------------------------------
  260.  
  261. Date: 5 Apr 90 13:04:56 GMT
  262. From: matthews@umd5.umd.edu  (Mike Matthews)
  263. Subject: Upgrading Mega 2 to Mega 4
  264. Message-ID: <6360@umd5.umd.edu>
  265.  
  266. In article <1990Apr4.212147.3676@athena.mit.edu> jdroh@athena.mit.edu (Jae D.
  267.  Roh) writes:
  268. >In article <1090@olnl1.UUCP>, paulz@olnl1.UUCP (Paul v.d. Zwan) writes:
  269. >Hopefully, you mean 16 more RAM chips, right?  Supposedly one can just solder
  270. >16 dip sockets onto the motherboard then fill them up with 1mbit rams, and
  271. >the ST will automatically recognize the additional memory.  I have been
  272. >meaning to try this for a while, but haven't gotten around to doing it yet.
  273. >It should work, since the motherboards for the Mega2 and Mega4 are the same.
  274. >If someone who knows more about this sees that I am mistaken in some of the
  275. >above, feel free to correct anything.
  276. >Jae D. Roh
  277. >MIT, Cambridge MA.
  278. >CS.
  279. >jdroh@athena.mit.edu
  280.  
  281. Whoa.... There are a whole lot of different Mega 2 motherboards ALONE!!!
  282. Some have the pads for extra RAM chips already, some don't.  Some have MMUs
  283. that won't recognize any more memory.  And some, a VERY few, came with the
  284. 4 megs of DRAMs already, and only needed a new solder connection... (only one
  285. of those has shown up, to my knowledge).
  286.  
  287. Best thing to do is take your computer to a dealership that you trust, if you
  288. don't feel like finding this out for yourself.
  289.  
  290. My Mega 2 has the pads for the extra RAM chips.  I'm almost willing to bet
  291. money that my MMU won't take it, though... it's a rev. 5.0 motherboard.
  292.  
  293. Mike
  294.  
  295. ------------------------------
  296.  
  297. End of INFO-ATARI16 Digest V90 Issue #409
  298. *****************************************
  299.